home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / share / ubiquity / migration-assistant < prev    next >
Text File  |  2008-10-29  |  336b  |  15 lines

  1. #! /bin/sh
  2. set -e
  3.  
  4. . /usr/share/debconf/confmodule
  5.  
  6. CONT="true"
  7. while [ "$CONT" = true ]; do
  8.     /usr/lib/ubiquity/migration-assistant/ma-ask /usr/lib/ubiquity/migration-assistant || break
  9.     db_input high ubiquity/run-ma-again || true
  10.     db_go || true
  11.     db_get ubiquity/run-ma-again
  12.     CONT="$RET"
  13.     db_fset ubiquity/run-ma-again seen false
  14. done
  15.